home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / perlnt.zip / t / op / stat.nt < prev    next >
Text File  |  1993-07-25  |  6KB  |  180 lines

  1. #!./perl
  2.  
  3. # $RCSfile: stat.t,v $$Revision: 4.0.1.3 $$Date: 91/11/11 16:44:49 $
  4.  
  5. #print "1..56\n";
  6. print "1..0\n";
  7. exit;
  8.  
  9. chop($cwd = `cd`);
  10.  
  11. $DEV = `ls -l /dev`;
  12.  
  13. unlink "Op.stat.tmp";
  14. open(FOO, ">Op.stat.tmp");
  15.  
  16. #$junk = `ls Op.stat.tmp`;    # hack to make Apollo update link count
  17.  
  18. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  19.     $blksize,$blocks) = stat(FOO);
  20. if ($nlink == 1) {print "ok 1\n";} else {print "not ok 1\n";}
  21. if ($mtime && $mtime == $ctime) {print "ok 2\n";} else {print "not ok 2\n";}
  22.  
  23. print FOO "Now is the time for all good men to come to.\n";
  24. close(FOO);
  25.  
  26. sleep 2;
  27.  
  28. #`rm -f Op.stat.tmp2; ln Op.stat.tmp Op.stat.tmp2; chmod 644 Op.stat.tmp`;
  29.  
  30. ($dev,$ino,$mode,$nlink,$uid,$gid,$rdev,$size,$atime,$mtime,$ctime,
  31.     $blksize,$blocks) = stat('Op.stat.tmp');
  32.  
  33. if ($nlink == 2) {print "ok 3\n";} else {print "not ok 3\n";}
  34. if (($mtime && $mtime != $ctime) || $cwd =~ m#/afs/#) {
  35.     print "ok 4\n";
  36. }
  37. else {
  38.     print "not ok 4\n";
  39. }
  40. print "#4    :$mtime: != :$ctime:\n";
  41.  
  42. `rm -f Op.stat.tmp`;
  43. `touch Op.stat.tmp`;
  44.  
  45. if (-z 'Op.stat.tmp') {print "ok 5\n";} else {print "not ok 5\n";}
  46. if (! -s 'Op.stat.tmp') {print "ok 6\n";} else {print "not ok 6\n";}
  47.  
  48. `echo hi >Op.stat.tmp`;
  49. if (! -z 'Op.stat.tmp') {print "ok 7\n";} else {print "not ok 7\n";}
  50. if (-s 'Op.stat.tmp') {print "ok 8\n";} else {print "not ok 8\n";}
  51.  
  52. unlink 'Op.stat.tmp';
  53. $olduid = $>;        # can't test -r if uid == 0
  54. `echo hi >Op.stat.tmp`;
  55. chmod 0,'Op.stat.tmp';
  56. eval '$> = 1;';        # so switch uid (may not be implemented)
  57. if (!$> || ! -r 'Op.stat.tmp') {print "ok 9\n";} else {print "not ok 9\n";}
  58. if (!$> || ! -w 'Op.stat.tmp') {print "ok 10\n";} else {print "not ok 10\n";}
  59. eval '$> = $olduid;';        # switch uid back (may not be implemented)
  60. print "# olduid=$olduid, newuid=$>\n" unless ($> == $olduid);
  61. if (! -x 'Op.stat.tmp') {print "ok 11\n";} else {print "not ok 11\n";}
  62.  
  63. foreach ((12,13,14,15,16,17)) {
  64.     print "ok $_\n";        #deleted tests
  65. }
  66.  
  67. chmod 0700,'Op.stat.tmp';
  68. if (-r 'Op.stat.tmp') {print "ok 18\n";} else {print "not ok 18\n";}
  69. if (-w 'Op.stat.tmp') {print "ok 19\n";} else {print "not ok 19\n";}
  70. if (-x 'Op.stat.tmp') {print "ok 20\n";} else {print "not ok 20\n";}
  71.  
  72. if (-f 'Op.stat.tmp') {print "ok 21\n";} else {print "not ok 21\n";}
  73. if (! -d 'Op.stat.tmp') {print "ok 22\n";} else {print "not ok 22\n";}
  74.  
  75. if (-d '.') {print "ok 23\n";} else {print "not ok 23\n";}
  76. if (! -f '.') {print "ok 24\n";} else {print "not ok 24\n";}
  77.  
  78. if (`ls -l perl` =~ /^l.*->/) {
  79.     if (-l 'perl') {print "ok 25\n";} else {print "not ok 25\n";}
  80. }
  81. else {
  82.     print "ok 25\n";
  83. }
  84.  
  85. if (-o 'Op.stat.tmp') {print "ok 26\n";} else {print "not ok 26\n";}
  86.  
  87. if (-e 'Op.stat.tmp') {print "ok 27\n";} else {print "not ok 27\n";}
  88. `rm -f Op.stat.tmp Op.stat.tmp2`;
  89. if (! -e 'Op.stat.tmp') {print "ok 28\n";} else {print "not ok 28\n";}
  90.  
  91. if ($DEV !~ /\nc.* (\S+)\n/)
  92.     {print "ok 29\n";}
  93. elsif (-c "/dev/$1")
  94.     {print "ok 29\n";}
  95. else
  96.     {print "not ok 29\n";}
  97. if (! -c '.') {print "ok 30\n";} else {print "not ok 30\n";}
  98.  
  99. if ($DEV !~ /\ns.* (\S+)\n/)
  100.     {print "ok 31\n";}
  101. elsif (-S "/dev/$1")
  102.     {print "ok 31\n";}
  103. else
  104.     {print "not ok 31\n";}
  105. if (! -S '.') {print "ok 32\n";} else {print "not ok 32\n";}
  106.  
  107. if ($DEV !~ /\nb.* (\S+)\n/)
  108.     {print "ok 33\n";}
  109. elsif (-b "/dev/$1")
  110.     {print "ok 33\n";}
  111. else
  112.     {print "not ok 33\n";}
  113. if (! -b '.') {print "ok 34\n";} else {print "not ok 34\n";}
  114.  
  115. $cnt = $uid = 0;
  116.  
  117. die "Can't run op/stat.t test 35 without pwd working" unless $cwd;
  118. chdir '/usr/bin' || die "Can't cd to /usr/bin";
  119. while (defined($_ = <*>)) {
  120.     $cnt++;
  121.     $uid++ if -u;
  122.     last if $uid && $uid < $cnt;
  123. }
  124. chdir $cwd || die "Can't cd back to $cwd";
  125.  
  126. # I suppose this is going to fail somewhere...
  127. if ($uid > 0 && $uid < $cnt) {print "ok 35\n";} else {print "not ok 35\n";}
  128.  
  129. unless (open(tty,"/dev/tty")) {
  130.     print STDERR "Can't open /dev/tty--run t/TEST outside of make.\n";
  131. }
  132. if (-t tty) {print "ok 36\n";} else {print "not ok 36\n";}
  133. if (-c tty) {print "ok 37\n";} else {print "not ok 37\n";}
  134. close(tty);
  135. if (! -t tty) {print "ok 38\n";} else {print "not ok 38\n";}
  136. open(null,"/dev/null");
  137. if (! -t null || -e '/xenix') {print "ok 39\n";} else {print "not ok 39\n";}
  138. close(null);
  139. if (-t) {print "ok 40\n";} else {print "not ok 40\n";}
  140.  
  141. # These aren't strictly "stat" calls, but so what?
  142.  
  143. if (-T 'op/stat.t') {print "ok 41\n";} else {print "not ok 41\n";}
  144. if (! -B 'op/stat.t') {print "ok 42\n";} else {print "not ok 42\n";}
  145.  
  146. if (-B './perl') {print "ok 43\n";} else {print "not ok 43\n";}
  147. if (! -T './perl') {print "ok 44\n";} else {print "not ok 44\n";}
  148.  
  149. open(FOO,'op/stat.t');
  150. eval { -T FOO; };
  151. if ($@ =~ /not implemented/) {
  152.     print "# $@";
  153.     for (45 .. 54) {
  154.     print "ok $_\n";
  155.     }
  156. }
  157. else {
  158.     if (-T FOO) {print "ok 45\n";} else {print "not ok 45\n";}
  159.     if (! -B FOO) {print "ok 46\n";} else {print "not ok 46\n";}
  160.     $_ = <FOO>;
  161.     if (/perl/) {print "ok 47\n";} else {print "not ok 47\n";}
  162.     if (-T FOO) {print "ok 48\n";} else {print "not ok 48\n";}
  163.     if (! -B FOO) {print "ok 49\n";} else {print "not ok 49\n";}
  164.     close(FOO);
  165.  
  166.     open(FOO,'op/stat.t');
  167.     $_ = <FOO>;
  168.     if (/perl/) {print "ok 50\n";} else {print "not ok 50\n";}
  169.     if (-T FOO) {print "ok 51\n";} else {print "not ok 51\n";}
  170.     if (! -B FOO) {print "ok 52\n";} else {print "not ok 52\n";}
  171.     seek(FOO,0,0);
  172.     if (-T FOO) {print "ok 53\n";} else {print "not ok 53\n";}
  173.     if (! -B FOO) {print "ok 54\n";} else {print "not ok 54\n";}
  174. }
  175. close(FOO);
  176.  
  177. if (-T '/dev/null') {print "ok 55\n";} else {print "not ok 55\n";}
  178. if (-B '/dev/null') {print "ok 56\n";} else {print "not ok 56\n";}
  179.  
  180.